home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / bind811a.zip / etc / samples / named.conf < prev    next >
Text File  |  1997-08-13  |  726b  |  35 lines

  1. // This is an example configuration file for the OS/2 port of 
  2. // named (from BIND 8.1 or later).
  3. // It would normally be installed as x:\tcpip\etc\named.conf.
  4. //
  5. // Start named with 'ndc start' or 'named -c %ETC%\named.conf'
  6.  
  7.  
  8. options {
  9.     directory "d:\mptn\etc\namedb";        /* may use drive letters and backslashes */
  10.     check-names master warn;        /* default. */
  11.     datasize 20M;
  12. };
  13.  
  14.  
  15. zone "localhost" IN {
  16.     type master;
  17.     file "db.localhost";
  18.     check-names fail;
  19.     allow-update { none; };
  20.     allow-transfer { any; };
  21. };
  22.  
  23. zone "127.in-addr.arpa" IN {
  24.     type master;
  25.     file "db.127";
  26.     check-names fail;
  27.     allow-update { none; };
  28.     allow-transfer { any; };
  29. };
  30.  
  31. zone "." IN {
  32.     type hint;
  33.     file "root.hint";
  34. };
  35.